home *** CD-ROM | disk | FTP | other *** search
- <?php
- require "admin/php/db-read.php";
- setlocale ("LC_TIME", "de_CH");
- $query = "SELECT *, MAX(datum) AS letzter FROM witze GROUP BY datum, titel ORDER BY datum DESC";
- $res = mysql_query ($query);
- $anz = mysql_num_rows ($res);
- ?>
- <HTML>
- <HEAD>
- <TITLE>www.AngieBecker.ch - Die ultimative Kultseite ...</TITLE>
- </HEAD>
-
- <BODY BGCOLOR="#FFFFFF" LINK="#6050E0" ALINK="#F06060" VLINK="#7830B8">
- <CENTER>
- <FONT FACE="Helvetica, Arial">
- <P><IMG ALT="www.AngieBecker.ch" SRC="bilder/AngieBecker.gif" BORDER=0 HEIGHT=52 WIDTH=238></P>
- <H1><FONT COLOR="#FF0000">Witze, Satieren und Comics</FONT></H1>
-
- <TABLE WIDTH="100%" BORDER=0 CELLPADDING=8 CELLSPACING=0 COLS=2>
- <TR><TD WIDTH="30%"></TD>
- <TD WIDTH="70%"></TD></TR>
- <?php
- for ($i = 0; $i < $anz; $i++) {
- $witz = mysql_fetch_object ($res);
- if ($i == 0) { $letzter = $witz->datum; }
- if ((empty($show) && ($i == 0)) || ($show == StripSlashes($witz->id))) {
- include ("admin/php/Tabelle.inc");
- } else {
- include ("admin/php/Zeile.inc");
- }
- }
- ?>
- <TR><TD COLSPAN=2></TD></TR>
- </TABLE>
-
- <P><FONT COLOR="#A0A0A0"><?php echo strftime("%d. %B %Y", StripSlashes($letzter)) ?></FONT></P>
- <P><FONT COLOR="#A0A0A0" SIZE="+1">Powered by <A HREF="http://www.Studi.ch/"><IMG ALIGN="ABSMIDDLE" ALT="www.Studi.ch" BORDER=0 SRC="http://www.Studi.ch/bilder/Studi.gif" WIDTH=158 HEIGHT=23></A></FONT></P>
- <P>
- <TABLE WIDTH="75%" BORDER=0 CELLPADDING=4 CELLSPACING=0 COLS=4>
- <TR><TD WIDTH="48%" ALIGN="RIGHT"><FONT FACE="Helvetica, Arial" COLOR="#A0A0A0">Besucher bisher von intern : <IMG ALIGN="ABSMIDDLE" SRC="http://www.Studi.ch/cgi-bin/count/count_dual.cgi?style=schwarz&trans=255,255,255&page=AB&show=intern"> </FONT></TD>
- <TD WIDTH="4%" ALIGN="CENTER"><IMG SRC="http://www.Studi.ch/bilder/Grau.gif" WIDTH=8 HEIGHT=8></TD>
- <TD WIDTH="28%"><FONT FACE="Helvetica, Arial" COLOR="#A0A0A0"> <IMG ALIGN="ABSMIDDLE" SRC="http://www.Studi.ch/cgi-bin/count/count_dual.cgi?style=schwarz&trans=255,255,255&page=AB&show=extern"> : von extern.</FONT></TD>
- <TD WIDTH="20%" ALIGN="RIGHT"><A HREF="http://www.Studi.ch/amiga-links.html"><IMG ALIGN="ABSMIDDLE" ALT="Made with Amiga" BORDER=0 SRC="http://www.Studi.ch/bilder/Amiga_made.gif" WIDTH=88 HEIGHT=31></A></TD></TR>
- </TABLE></P>
- </FONT>
- </CENTER>
- </BODY>
- </HTML>
-